home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / _bbs / rbbstool / all.bat < prev    next >
DOS Batch File  |  1995-07-13  |  900b  |  39 lines

  1. rem this is where the actual files live
  2. set cdrom=n:
  3. rem this is where you want your index files (full path, with drive)
  4. set output=n:\_bbs\rbbs
  5.  
  6. REM  I set this globally, in ..\all.bat
  7. REM  To run this one batch file, change it here also.
  8. if .%in_type% == . goto not_set
  9. goto set
  10. :not_set
  11. echo in_type not set
  12. goto end
  13. :set
  14.  
  15. rem you shouldn't have to change anything below this.
  16.  
  17. REM  This is the foreign language stuff.  the default extension is
  18. REM  ".txt"
  19. if .%in_language% == . goto not_set2
  20. goto set2
  21. :not_set2
  22. set in_language=txt
  23. :set2
  24.  
  25. del logfile
  26. del ..\logfile
  27. echo y | del %output%\*.*
  28.  
  29. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit2
  30.  
  31. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit3
  32.  
  33. type makefidx.1 > makefidx.cfg
  34. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit4
  35. type makefidx.2 >> makefidx.cfg
  36.  
  37. call makeffs
  38. :end
  39.